Welcome![Sign In][Sign Up]
Location:
Search - Android File

Search list

[androideoeInfosAssistant

Description: Android平台下的手机系统管理软件,就像电脑系统一样包括进程管理、文件管理和系统管理,具体来说,包括:   1、系统信息,查看设备系统版本,运营商及其系统信息.   2、硬件信息查看包括CPU,硬盘,内存等硬件信息.   3、软件信息,查看已经安装的软件信息.   4、运行时信息,查看设备运行时的信息.   5、文件浏览器,浏览查看文件系统. -Android mobile phone platform systems management software, like computer systems as including process management, document management and system administration, specifically including: 1, system information, view the equipment, system version, operators and system information. 2, hardware information view including the CPU, hard drive, memory and other hardware information. 3, software information, view the installed software information. 4, run-time information, view the device run-time information. 5, file browser, browse view the file system.
Platform: | Size: 167936 | Author: liyang | Hits:

[SCMDownLoad

Description: android 下载文件 文件流缓冲下载文件到相应SD卡目录 多线程下载-android download the file to download the file stream buffer to the appropriate multi-threaded download SD card catalog
Platform: | Size: 4855808 | Author: aaa | Hits:

[androidxml

Description: android xml文件读取 包括 四种读取方式 一一列举 dom dom4j等-android xml file reading means reading includes four other enumerated dom dom4j
Platform: | Size: 56320 | Author: aaa | Hits:

[androidandroidxml

Description: 一个Android布局的例子,主要是利用xml文件进行布局,这里边用到的是RelativeLayout。      1.ActivityMain演示了linerLayout。   2.ActivityLayout 演示了RelativeLayout和linerLayout的结合。   3.ActivityRelativeLayout 演示了单独的RelativeLayout。 -Android example of a layout, mainly using xml file layout, where the edge is used RelativeLayout. 1.ActivityMain demonstrates linerLayout. 2.ActivityLayout demonstrates RelativeLayout and linerLayout combination. 3.ActivityRelativeLayout demonstrates separate RelativeLayout.
Platform: | Size: 724992 | Author: ven | Hits:

[androidAdobe_PDF_Viewer

Description: Adobe为Android提供的官方版PDF Viewer,从apk文件反编译出的Java源码,可以借此学习PDF Viewer在Android上的实现。-Adobe s official version of PDF Viewer for Android, decompiled from the apk file, and this Java source code can supply you a help of learning the implementation of PDF Viewer on the Android.
Platform: | Size: 245760 | Author: wmka | Hits:

[androidandbook

Description: android学习 经典原著,非影音 有目录pdf文件-android learning classic original, non-video have a catalog pdf file
Platform: | Size: 1551360 | Author: 吴扬 | Hits:

[androidsend-message-source

Description: just see zip file, send email from android
Platform: | Size: 51200 | Author: hussain | Hits:

[android20110422_020907720

Description: android 文件夹浏览,类似于windows的文件浏览器。-android file brower
Platform: | Size: 56320 | Author: ryc | Hits:

[androidphotoshow7

Description: eclipse开发的andoird应用程序,一个简单的图片浏览器+文件浏览器+android sqlite数据库+intent传值和一些常见的widget的应用,如button,edittext这些,-application development andoird eclipse, a simple picture viewer+ file browser+ android sqlite database+ intent-value of the widget and some common applications, such as button, edittext these,
Platform: | Size: 3085312 | Author: sxl | Hits:

[androidBWChess

Description: android平台上的黑白棋游戏.直接导入的话是不行的,必须添加相关库文件-A chess game played on andriod platform。Directly into the case does not work, you must add the relevant library file
Platform: | Size: 55296 | Author: dotA | Hits:

[androidLab3

Description: Android天气预报的小应用,通过手机所在地获取当地经纬度,然后搜索google天气服务器提供的xml文件获取信息,最后通过DOM方式解释结果. 注意使用方法:如果用模拟器的话,要在DDMS视角添加经度和纬度。模拟获取当地经纬度。-a small app about weather forecast, it gets the latitude and longtitude of the place where the mobile phone is. And then search the relevant information from the google server. At last, explains the xml file and show the weather information.
Platform: | Size: 49152 | Author: morgan | Hits:

[androidAndroidSaveData

Description: Android五种存储数据方式(ContentProvider,Share preferences,file,SQLitedatabase,网络c存储)实例-Five ways to store data instance android
Platform: | Size: 117760 | Author: wangfeng | Hits:

[androidsu-2.3.6.1-cd-signed

Description: file for android developement
Platform: | Size: 296960 | Author: fg | Hits:

[androidFileManager

Description: 实现对android 手机 文件简单 管理-Implement simple file management for android mobile phones
Platform: | Size: 219136 | Author: 12456 | Hits:

[androidH264Android

Description: H264解码器源码,移植ffmpeg中的H264解码部分到Android,深度删减优化,在模拟器(320x480)中验证通过。 程序的采用jni架构。界面部分,文件读取,视频显示都是用java做的,底层的视频解码用C来做满足速度的要求。 在这个版本中,从H264码流中分割出Nal是在java层做的,这样在java层直接调用解码时就知道是否有显示视频,缺点的就是耦合度/封装性差一点。 如果采用在底层做Nal分割的方法,可以封装得好看一些,但是每次送的数据有限制,如果送的数据太多,底层可能会一次解码出好几帧视频,但是通知到界面层只能显示一帧,造成丢帧的现象。 如果每次送的数据较少,就会有很多次底层调用没有进行实质解码,很小气的做法,比如有一压缩数据帧需要600字节,如果一次送100个字节给解码器,那么要送6次才会进行实质解码,因为每个数据帧有大有小,所以只能取极小值才不会导致丢帧。 不过所有的编码解码都是各种因素平衡折中的结果,具体用什么方法具体分析。-H264 decoder source code, porting ffmpeg s H264 decoder part to Android, the depth of cut optimization, in the simulator (320x480) to verify through. Program using jni architecture. Interface portion of the file to read, the video display is made with java, the underlying video decoding in C to do to meet the speed requirements. In this version, the H264 stream from a separate layer of Nal is done in java, so call decoding in java layer directly whether there is to know when to display video, drawback is the coupling/packaging of almost. If used at the bottom do Nal segmentation method can be encapsulated look good, but each time there is limited data to send, if you get too much data, the underlying may be a decoding of several frames of video, but the notice to the interface layer can only display one, resulting in dropped frames phenomenon. If you send less data each time, there will be many times not to call the underlying substance of decoding, a small gas practices, s
Platform: | Size: 230400 | Author: wyc | Hits:

[androiddownload

Description: android文件下载上传源码,欢迎大家下载-Upload file download android source code, are welcome to download
Platform: | Size: 52224 | Author: leon9201314 | Hits:

[androidANDROID-2.0

Description: 一个关于android的电子书pdf文件,全文-A book about the android pdf file, full text
Platform: | Size: 58485760 | Author: liyang | Hits:

[androidFileRW

Description: 在 Android 中,可供选择的存储方式有 SharedPreferences、文件存储、SQLite 数据库方式、内容提供器(content provider)和网络,此为文件存储的一个例子,很适合初学者-In Android, the choice of storage methods are SharedPreferences, file storage, SQLite database mode, the content provider (content provider) and network, this is an example of file storage, it is suitable for beginners
Platform: | Size: 47104 | Author: BruceMeng | Hits:

[androidMediaPlay

Description: 利用eclipse在android平台下做出的一个音乐播放器,具有音乐播放的功能-Using eclipse in the android platform to make a music player with music playback function
Platform: | Size: 864256 | Author: 华华 | Hits:

[androidarrayTest

Description: Android声明数组示例。这是使用Android的声明XML文件来做的-Android declare array example. This is a statement of the XML file to use Android to do the
Platform: | Size: 40960 | Author: han qiang | Hits:
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »

CodeBus www.codebus.net